home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today (UK) (Spanish) 1
/
CD ROM TODAY.iso
/
pinball
/
install.bat
next >
Wrap
DOS Batch File
|
1994-07-19
|
1KB
|
60 lines
echo off
cls
IF "%1"=="C" GOTO DRIVE
IF "%1"=="D" GOTO DRIVE
IF "%1"=="E" GOTO DRIVE
IF "%1"=="F" GOTO DRIVE
IF "%1"=="G" GOTO DRIVE
IF "%1"=="H" GOTO DRIVE
IF "%1"=="I" GOTO DRIVE
IF "%1"=="c" GOTO DRIVE
IF "%1"=="d" GOTO DRIVE
IF "%1"=="e" GOTO DRIVE
IF "%1"=="f" GOTO DRIVE
IF "%1"=="g" GOTO DRIVE
IF "%1"=="h" GOTO DRIVE
IF "%1"=="i" GOTO DRIVE
ECHO Please type INSTALL X, where X is the letter of the drive you wish to install
echo Pinball Fantasies 10 Min demo to (for example INSTALL C).
GOTO :QUITINSTALL
:DRIVE
ECHO Pinball Fantasies 10 Min demo is about to be installed onto your %1: hard disk.
ECHO The directory %1:\FANTDEMO will be created.
ECHO -
ECHO If you do not wish to continue, press Control-C now, or
PAUSE
ECHO -
cls
echo Please wait, copying Pinball Fantasies 10 Min Demo to your Hard drive.
echo -
echo -
mkdir %1:\fantdemo
copy pkunzjr.com %1:\fantdemo
copy pf_demo.zip %1:\fantdemo
cls
%1:
cd \fantdemo
pkunzjr -o pf_demo
del pf_demo.zip
del pkunzjr.com
cls
echo I will now run the Setsound program. Please select which sound source your
echo PC has.
echo -
pause
setsound
cls
echo To play the demo simply enter the directory
echo %1:\FANTDEMO
ECHO -
ECHO and run the Program
echo PINBALL
echo -
:QUITINSTALL